home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Toolbox / Visual Basic Toolbox (P.I.E.)(1996).ISO / toolbar / tipbtn / tsample.frm < prev    next >
Text File  |  1994-09-17  |  3KB  |  94 lines

  1. VERSION 2.00
  2. Begin Form Form1 
  3.    Caption         =   "Tips Sample"
  4.    ClientHeight    =   1455
  5.    ClientLeft      =   1680
  6.    ClientTop       =   2115
  7.    ClientWidth     =   4455
  8.    Height          =   1860
  9.    Left            =   1620
  10.    LinkTopic       =   "Form1"
  11.    ScaleHeight     =   1455
  12.    ScaleWidth      =   4455
  13.    Top             =   1770
  14.    Width           =   4575
  15.    Begin TextBox Text2 
  16.       Height          =   285
  17.       Left            =   1080
  18.       TabIndex        =   5
  19.       Tag             =   "Enter Your Title Here"
  20.       Top             =   960
  21.       Width           =   1575
  22.    End
  23.    Begin TextBox Text1 
  24.       Height          =   285
  25.       Left            =   1080
  26.       TabIndex        =   3
  27.       Tag             =   "Enter Your Name Here"
  28.       Top             =   480
  29.       Width           =   1575
  30.    End
  31.    Begin MabryTips Tips1 
  32.       BackColor       =   &H0000E0E0&
  33.       FontBold        =   0   'False
  34.       FontItalic      =   0   'False
  35.       FontName        =   "MS Sans Serif"
  36.       FontSize        =   8.25
  37.       FontStrikethru  =   0   'False
  38.       FontUnderline   =   0   'False
  39.       Height          =   240
  40.       Interval        =   750
  41.       Left            =   120
  42.       Top             =   120
  43.       Width           =   870
  44.       XOffset         =   4
  45.       YOffset         =   16
  46.    End
  47.    Begin CommandButton Command2 
  48.       Caption         =   "Close"
  49.       Height          =   375
  50.       Left            =   3000
  51.       TabIndex        =   1
  52.       Tag             =   "Abandon Record"
  53.       Top             =   720
  54.       Width           =   1215
  55.    End
  56.    Begin CommandButton Command1 
  57.       Caption         =   "OK"
  58.       Height          =   375
  59.       Left            =   3000
  60.       TabIndex        =   0
  61.       Tag             =   "Save Record"
  62.       Top             =   240
  63.       Width           =   1215
  64.    End
  65.    Begin Label Label2 
  66.       Alignment       =   1  'Right Justify
  67.       Caption         =   "Title:"
  68.       Height          =   255
  69.       Left            =   120
  70.       TabIndex        =   4
  71.       Top             =   960
  72.       Width           =   855
  73.    End
  74.    Begin Label Label1 
  75.       Alignment       =   1  'Right Justify
  76.       Caption         =   "Name:"
  77.       Height          =   255
  78.       Left            =   120
  79.       TabIndex        =   2
  80.       Top             =   480
  81.       Width           =   855
  82.    End
  83. End
  84. Option Explicit
  85.  
  86. Sub Tips1_TipDisplay (ControlName As String, HelpContextID As Long, Tag As String)
  87.     If Left(ControlName, 4) = "Text" Then
  88.         Tips1.YOffset = 6
  89.     Else
  90.         Tips1.YOffset = 16
  91.     End If
  92. End Sub
  93.  
  94.